This function retrieves information on a specific data field.
Result = EOS_GD_FIELDINFO(gridID, fieldname, rank, dims, numbertype, dimlist)
Returns SUCCEED(0) if successful and FAIL(–1) if the specified field does not exist.
Grid id (long) returned by EOS_GD_CREATE or EOS_GD_ATTACH.
Fieldname (string).
A named variable that will contain the pointer to rank (long) of the field.
A named variable that will contain an array (long) of the dimension sizes of the field.
A named variable that will contain the HDF data type (long) of the field.
A named variable that will contain the dimension list (string).
None
In this example, we retrieve information about the Spectra data fields:
status = EOS_GD_FIELDINFO(gridID, "Spectra", rank, dims,$
numbertype, dimlist)
5.2 |
Introduced |